/* ============================================
   PIROTS ELK HUB — pirots-elk.com
   Universal series hub — content-first, bot-optimized
   ============================================ */

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2 supports variations'),
       url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --bg:        #07071a;
  --bg2:       #0d0d28;
  --card:      #11112e;
  --card-lt:   #181838;

  --gold:      #f7c843;
  --gold-lt:   #ffd96a;
  --gold-dk:   #b8901e;

  --accent:      #8b5cf6;
  --accent-lt:   #b48cff;
  --accent-dk:   #5a30c4;
  --accent-glow: rgba(139,92,246,0.42);
  --accent-soft: rgba(139,92,246,0.10);
  --accent-bdr:  rgba(139,92,246,0.32);

  --cyber:     #3a8aff;

  --text:      #ffffff;
  --text-md:   rgba(255,255,255,0.78);
  --text-dim:  rgba(255,255,255,0.48);
  --border:    rgba(255,255,255,0.08);

  --header-h:  76px;
  --max-w:     1140px;

  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-pill: 50px;
  --font-d: 'Bebas Neue','Arial Black',sans-serif;
  --font-b: 'Outfit',system-ui,sans-serif;
  --tr: 0.2s ease;
}

.game-card { display: block; }
.game-info { display: flex; flex-direction: column; gap: 3px; }
html, body { overflow-x: hidden; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at 10% 5%, var(--accent-soft), transparent 50%),
    radial-gradient(ellipse at 92% 22%, rgba(247,200,67,0.08), transparent 55%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,7,26,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.site-header.scrolled { background: rgba(7,7,26,0.96); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-link, .logo-link-mobile {
  display: flex; align-items: center;
  text-decoration: none;
}
.logo-link-mobile { display: none; }
.logo-link img { height: 56px; width: auto; display: block; filter: drop-shadow(0 4px 12px rgba(247,200,67,0.30)); }
.logo-link-mobile img { height: 46px; width: auto; display: block; filter: drop-shadow(0 4px 12px rgba(247,200,67,0.30)); }

.header-nav { display: flex; gap: 24px; }
.header-nav a {
  font-weight: 600; font-size: 14px;
  color: var(--text-md);
  transition: var(--tr);
  position: relative;
}
.header-nav a:hover { color: var(--gold); }
.header-nav a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--tr); }
.header-nav a:hover::after { width: 100%; }

.header-actions { display: flex; gap: 10px; align-items: center; }
.burger {
  width: 40px; height: 40px;
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; padding: 14px 0 20px; border-top: 1px solid var(--border); background: rgba(7,7,26,0.96); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 13px 20px; color: var(--text-md); font-weight: 600; border-radius: 10px; }
.mobile-nav a:hover { color: var(--gold); background: rgba(247,200,67,0.08); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-b); font-weight: 700; font-size: 15px;
  border-radius: var(--r-pill);
  transition: var(--tr); cursor: pointer; white-space: nowrap;
  text-decoration: none !important;
  border: 1px solid transparent;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #1a1303 !important;
  box-shadow: 0 6px 22px rgba(247,200,67,0.40);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(247,200,67,0.55); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff !important;
  box-shadow: 0 6px 22px var(--accent-glow);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--accent-glow); }
.btn-ghost { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); color: var(--text) !important; }
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: var(--gold); color: var(--gold) !important; }

/* COMPACT HERO */
.hero {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 30%, var(--accent-soft), transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(247,200,67,0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  border: 1px solid var(--accent-bdr);
  font-size: 12px; font-weight: 700;
  color: var(--accent-lt);
  text-transform: uppercase; letter-spacing: 1.3px;
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.0;
  margin: 0 0 18px;
  letter-spacing: 0.5px;
}
.hero-title .hi-gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 640px;
  margin: 26px auto 24px;
}
.hero-stat {
  text-align: center;
  padding: 12px 8px;
  border-radius: var(--r-md);
  background: rgba(247,200,67,0.06);
  border: 1px solid rgba(247,200,67,0.20);
}
.hero-stat-val { font-family: var(--font-d); font-size: 22px; color: var(--gold); line-height: 1; }
.hero-stat-lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.6px; margin-top: 4px; }
.hero-btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* SECTIONS */
.section { padding: 56px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  border: 1px solid var(--accent-bdr);
  color: var(--accent-lt);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}
.section-title .hi { color: var(--accent-lt); }
.section-title .hi-gold { color: var(--gold); }
.section-sub { font-size: 16px; color: var(--text-md); margin: 0 0 32px; max-width: 720px; }
.section-header { margin-bottom: 32px; }

/* SERIES GRID — 7 cards */
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.series-card {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: var(--tr);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.series-card:hover { border-color: var(--accent-bdr); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
.series-cover {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
}
.series-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--tr);
}
.series-card:hover .series-cover img { transform: scale(1.06); }
.series-cover-tag {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(247,200,67,0.92);
  color: #1a1303;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 2;
}
.series-body { padding: 20px 22px 22px; flex-grow: 1; display: flex; flex-direction: column; }
.series-name {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}
.series-meta {
  display: flex; flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 12px;
}
.series-tag {
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05);
  font-size: 11px;
  color: var(--text-md);
  font-weight: 600;
}
.series-text {
  color: var(--text-dim);
  font-size: 13px;
  margin: 0 0 14px;
  line-height: 1.5;
  flex-grow: 1;
}
.series-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  transition: var(--tr);
  align-self: flex-start;
}
.series-link:hover { color: var(--accent-lt); gap: 10px; }
.series-link::after { content: '→'; transition: var(--tr); }

/* COMPARE TABLE — big */
.compare-section { padding: 60px 0; }
.compare-wrap {
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  overflow-x: auto;
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  vertical-align: middle;
}
.compare-table thead th {
  background: var(--accent-soft);
  color: var(--accent-lt);
  font-family: var(--font-d);
  font-size: 15px;
  letter-spacing: 0.6px;
  font-weight: 400;
  white-space: nowrap;
}
.compare-table tbody td:first-child { font-weight: 700; color: var(--gold); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.compare-table td.c-unique { color: var(--accent-lt); font-weight: 600; }
.compare-mobile-hint { display: none; font-size: 12px; color: var(--text-dim); margin-top: 12px; text-align: center; }

/* MECHANICS */
.mech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mech-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--card-lt), var(--card));
  border: 1px solid var(--border);
  transition: var(--tr);
}
.mech-card:hover { border-color: var(--accent-bdr); transform: translateY(-3px); }
.mech-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px;
}
.mech-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #1a1303;
  box-shadow: 0 4px 14px rgba(247,200,67,0.30);
  flex-shrink: 0;
}
.mech-card.is-accent .mech-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}
.mech-name {
  font-family: var(--font-d);
  font-size: 24px;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.5px;
}
.mech-text { color: var(--text-md); font-size: 14px; margin: 0; line-height: 1.6; }
.mech-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.mech-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 13px;
  color: var(--text-md);
}
.mech-list li::before { content: '✓'; position: absolute; left: 0; top: 6px; color: var(--gold); font-weight: 800; }
.mech-card.is-accent .mech-list li::before { color: var(--accent-lt); }

/* CASINOS */
.casinos-section { padding: 60px 0; }
.casinos-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.casino-card {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--border);
  transition: var(--tr);
  align-items: center;
}
.casino-card:hover { border-color: var(--accent-bdr); transform: translateY(-2px); }
.casino-rank { display: flex; align-items: center; gap: 14px; }
.casino-rank-num {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #1a1303;
  font-family: var(--font-d); font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(247,200,67,0.30);
}
.casino-logo {
  width: 80px; height: 80px;
  border-radius: var(--r-md);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  overflow: hidden;
}
.casino-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.casino-info-name { font-family: var(--font-d); font-size: 22px; color: var(--text); margin: 0 0 4px; letter-spacing: 0.5px; }
.casino-rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.casino-rating-val { font-weight: 800; color: var(--gold); font-size: 13px; }
.casino-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.casino-perks { display: flex; flex-wrap: wrap; gap: 5px; }
.casino-perk {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-lt);
  font-weight: 600;
}
.casino-action { display: flex; flex-direction: column; gap: 7px; align-items: stretch; }

/* PAYMENTS */
.payments-section { padding: 40px 0 60px; }
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 10px;
}
.pay-item {
  height: 50px;
  background: #fff;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  padding: 6px 10px;
  transition: var(--tr);
}
.pay-item:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.5); }
.pay-item img { max-height: 26px; max-width: 100%; object-fit: contain; }

/* FAQ — big and clean */
.faq-section { padding: 60px 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 920px; margin: 0 auto; }
.faq-item {
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--tr);
}
.faq-item.open { border-color: var(--accent-bdr); }
.faq-question {
  padding: 17px 22px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin: 0;
}
.faq-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-lt);
  font-size: 20px;
  font-weight: 400;
  transition: var(--tr);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--text-md); font-size: 14px; line-height: 1.65; }
.faq-answer-inner p { margin: 0 0 10px; }
.faq-answer-inner p:last-child { margin: 0; }

/* PROSE / SEO TEXT */
.section.prose.container { max-width: 920px; }
.prose { font-size: 16px; line-height: 1.72; color: var(--text-md); }
.prose h2 {
  font-family: var(--font-d);
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--text);
  margin: 36px 0 14px;
  letter-spacing: 0.5px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-b);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-lt);
  margin: 24px 0 10px;
}
.prose p { margin: 0 0 14px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--gold); border-bottom: 1px dashed currentColor; }
.prose a:hover { color: var(--accent-lt); }
.prose ol, .prose ul, .list-content {
  padding-left: 1.5em !important;
  margin: 12px 0 18px !important;
}
.prose ol, .list-content.list-ol { list-style: decimal !important; }
.prose ul, .list-content.list-ul { list-style: disc !important; }
.prose ol li, .prose ul li, .list-content li {
  padding: 4px 0 !important;
  display: list-item !important;
}
.prose table, .review-table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.review-table-wrap {
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  overflow-x: auto;
  margin: 18px 0;
}
.review-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 14px; }
.review-table tr:last-child td { border-bottom: 0; }
.review-table tr:nth-child(odd) td { background: rgba(255,255,255,0.02); }
.review-table tr td:first-child { font-weight: 700; color: var(--text); width: 38%; }

/* FOOTER */
.site-footer {
  margin-top: 40px;
  padding: 44px 0 22px;
  background: linear-gradient(180deg, transparent, rgba(7,7,26,0.9));
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-about { font-size: 13px; color: var(--text-dim); margin: 14px 0 0; line-height: 1.55; max-width: 320px; }
.footer-col-title { font-family: var(--font-d); font-size: 16px; color: var(--gold); margin: 0 0 12px; letter-spacing: 0.7px; }
.footer-col a { display: block; padding: 4px 0; font-size: 13px; color: var(--text-md); transition: var(--tr); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-top: 22px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.age-badge { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: #ff3030; color: #fff; font-family: var(--font-d); font-size: 17px; flex-shrink: 0; }
.footer-disclaimer { font-size: 12px; color: var(--text-dim); line-height: 1.55; margin: 0; max-width: 780px; }
.footer-disclaimer a { color: var(--gold); border-bottom: 1px dashed currentColor; }
.footer-copy { font-size: 12px; color: var(--text-dim); margin: 0; }

/* MEDIA */
@media (max-width: 1100px) {
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  .header-nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }
  .logo-link { display: none; }
  .logo-link-mobile { display: flex; }

  .hero { padding: 36px 0 44px; }
  .hero-title { font-size: 44px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .hero-stat-val { font-size: 17px; }
  .hero-stat-lbl { font-size: 9px; }

  .section { padding: 48px 0; }
  .mech-grid { grid-template-columns: 1fr; }
  .casino-card { grid-template-columns: 1fr; gap: 14px; text-align: center; position: relative; padding: 32px 18px 18px; }
  .casino-rank { justify-content: center; flex-direction: column; gap: 12px; }
  .casino-rank-num { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); }
  .casino-logo { margin: 22px auto 0; }
  .casino-perks { justify-content: center; }
  .compare-mobile-hint { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 600px) {
  html, body { overflow-x: hidden; }
  .container { padding: 0 14px; }
  .section { padding: 44px 0; }
  .section.prose.container { padding-left: 14px !important; padding-right: 14px !important; }

  .hero { padding: 28px 0 36px; }
  .hero-title { font-size: 34px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat-val { font-size: 20px; }
  .hero-stat-lbl { font-size: 10px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }

  .section-title { font-size: 28px; }
  .section-sub { font-size: 14px; }

  .series-grid { grid-template-columns: 1fr; }

  .mech-card { padding: 22px 20px; }
  .mech-name { font-size: 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-about { max-width: none; }
}

@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 30px; }
  .section-title { font-size: 24px; }
}
